.twins {
  color: rgb(66, 231, 0);
}

.traveler {
  color:rgb(255, 201, 201);
}

.bull {
  color: rgb(178, 0, 0);
}

.knight {
  color: rgb(0, 0, 224);
}

.mother {
  color: rgb(255, 217, 128);
}

.eternity {
    color: rgb(254, 95, 0);
}

.witch {
    color: rgb(36, 233, 179);
}

.trickster {
    color: rgb(170, 0, 150);
}

.scorpion {
    color: rgb(157, 255, 0);
}

.coin {
    color: rgb(255, 187, 115);
}

.tree {
    color: rgb(233, 233, 254);
}

.fountain {
    color: rgb(117, 218, 255);
}

.hunter {
    color: rgb(255, 154, 159);
}

.king {
    color: rgb(255, 213, 0);
    text-shadow:
    0 0 7px rgb(255, 213, 0),
    0 0 12px rgb(255, 224, 67),
    0 0 15px rgb(255, 255, 255);
}

.pen {
    color: rgb(230, 179, 255);
}

.lover {
    color: rgb(255, 170, 222);
}

.time {
    color: rgb(222, 255, 211);
    text-shadow:
    0 0 7px rgb(222, 255, 211);
    animation-name: jitter;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes jitter {
    1.3% {
        text-shadow: 
        6px 0 1px rgb(222, 255, 211),
        0 0 7px rgb(222, 255, 211);
    }
    1.5% {
        text-shadow: 
        0 0 7px rgb(222, 255, 211);
    }
    40% {
        text-shadow: 
        0 0 7px rgb(222, 255, 211);
    }
    40.5% {
        text-shadow: 
        -6px 0 1px rgb(222, 255, 211),
        0 0 7px rgb(222, 255, 211);
    }
    41% {
        text-shadow: 
        0 0 7px rgb(222, 255, 211);
    }
}